home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Online / OpenURL / Developer / C / include / clib / openurl_protos.h
C/C++ Source or Header  |  1999-09-26  |  898b  |  37 lines

  1. #ifndef    CLIB_OPENURL_PROTOS_H
  2. #define    CLIB_OPENURL_PROTOS_H
  3.  
  4. /*
  5. ** openurl.library - universal URL display and browser launcher library
  6. ** Written by Troels Walsted Hansen <troels@thule.no>
  7. ** Placed in the public domain.
  8. **
  9. ** Library prototypes.
  10. */
  11.  
  12. /**************************************************************************/
  13.  
  14. #ifndef EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17.  
  18. #ifndef UTILITY_TAGITEM_H
  19. #include <utility/tagitem.h>
  20. #endif
  21.  
  22. #ifndef LIBRARIES_URL_H
  23. #include <libraries/openurl.h>
  24. #endif
  25.  
  26. /**************************************************************************/
  27.  
  28. BOOL URL_OpenA(STRPTR, struct TagItem *);
  29. BOOL URL_Open(STRPTR, Tag, ...);
  30. struct URL_Prefs *URL_GetPrefs(VOID);
  31. VOID URL_FreePrefs(struct URL_Prefs *);
  32. BOOL URL_SetPrefs(struct URL_Prefs *, BOOL);
  33. struct URL_Prefs *URL_GetDefaultPrefs(VOID);
  34. BOOL URL_LaunchPrefsApp(VOID);
  35.  
  36. #endif  /* CLIB_OPENURL_PROTOS_H */
  37.